Advertisement
BINO2002

Untitled

Sep 2nd, 2019
806
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. game.Players.LocalPlayer.Character.Humanoid.MaxSlopeAngle = 100
  2. for _, v in pairs(workspace.Markers:GetDescendants()) do
  3. if v:IsA("BillboardGui") then
  4. v.Enabled = true
  5. v.AlwaysOnTop = true
  6. end
  7. end
  8. local instances = workspace:GetDescendants()
  9. local code = ""
  10. for _, v in pairs(instances) do
  11. if v:IsA("TextLabel") then
  12. if v.Font == Enum.Font.SciFi then
  13. code = v.Text
  14. end
  15. end
  16. end
  17. warn("CODE: " .. code)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement