Created
February 13, 2022 11:47
-
-
Save casualdegenerate/38bb71213d30b293a50e0df530fda6f4 to your computer and use it in GitHub Desktop.
Patch#0 for Hostile-Skies on roblox.com
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- // slua (https://x.synapse.to) | |
print('slua https://x.synapse.to', 'Hostile Planes Patch#0', script.Name) | |
-- // Replaces plane ESP name to Display Names to prevent confustion in the chat when playing with randoms and talking with them | |
local function modify(PlayerName) | |
local PlayerName = PlayerName:WaitForChild('Main'):WaitForChild('Sign'):WaitForChild('PlayerName') | |
local display = game:GetService('Players')[PlayerName.Text].DisplayName | |
PlayerName.Text = display | |
end | |
workspace.Planes.ChildAdded:Connect(function(Plane) | |
modify(Plane) | |
end) | |
for _, Plane in next, workspace.Planes:GetDescendants() do | |
spawn(function()modify(Plane)end) -- // the function yields so you have to pretty much just spawn it | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment