Advertisement
Guest User

Giant Roblox Script

a guest
Nov 11th, 2018
10,848
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. local billboardgui = game.GetService:("ServerStorage"):WaitForChild("BillboardGui")
  2.  
  3. game.Players.PlayerAdded:Connect(function(player)
  4. player.CharacterAdded:Connect(function(character)
  5. if player.Name == "TBNRNacRBPlayz"
  6. local clonedgui = billboardgui:Clone()
  7. clonedgui.TextLabel.Text = "Giant"
  8. clonedgui.TextLabel.TextColor3 = Color3.fromRGB(255,0,0)
  9. clonedgui.Parent = game.Workspace:WaitForChild(player.Name).Head
  10. game.Players.PlayerAdded:Connect(function(Player)
  11. Player.CharacterAdded:Connect(function(Character)
  12. local Humanoid = Character:WaitForChild('Humanoid')
  13. for i,Child in pairs(Humanoid:GetChildren()) do
  14. if Child:IsA('NumberValue') then
  15. Child.Value = 10
  16. end
  17. end
  18. end)
  19. end)
  20. end
  21. end)
  22. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement