Skip to content

Instantly share code, notes, and snippets.

@casualdegenerate
Created February 13, 2022 11:47
Show Gist options
  • Save casualdegenerate/38bb71213d30b293a50e0df530fda6f4 to your computer and use it in GitHub Desktop.
Save casualdegenerate/38bb71213d30b293a50e0df530fda6f4 to your computer and use it in GitHub Desktop.
Patch#0 for Hostile-Skies on roblox.com
-- // 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