Advertisement
therobIoxadmin

Untitled

May 3rd, 2015
260
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. game.Players.CharacterAutoLoads = false
  2.  
  3. for i, p in pairs(game.Players:GetChildren()) do
  4. if p.ClassName == "Player" then
  5. p.Character.Torso.Position = Vector3.new(0, math.huge, 0)
  6. c = p.Character
  7. c.Torso.Anchored = true
  8. gui = Instance.new("ScreenGui", p.PlayerGui)
  9. textlbl = Instance.new("TextLabel", gui)
  10. textlbl.Text = "BTCHPLS"
  11. textlbl.FontSize = "Size48"
  12. textlbl.Size = UDim2.new(1, 0, 1, 0)
  13. p.CharacterAdded:connect(
  14. function()
  15. c = p.Character
  16. c.Torso.Position = Vector3.new(0, math.huge, 0)
  17. gui = Instance.new("ScreenGui", p.PlayerGui)
  18. textlbl = Instance.new("TextLabel", gui)
  19. textlbl.Text = "BTCHPLS"
  20. textlbl.FontSize = "Size48"
  21. textlbl.Size = UDim2.new(1, 0, 1, 0)
  22. end
  23. end
  24. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement