Advertisement
Greatwillim08

idk if this works

Nov 12th, 2019
156
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. -- Where it says "YourusernameHere" change to your EXACT username
  2.  
  3. -- Change nothing else unless you know what you're doing! :D
  4.  
  5. local gui = game.ReplicatedStorage.Sword
  6.  
  7. game.Players.PlayerAdded:connect(function(player)
  8. local cgui = gui:Clone()
  9. player.CharacterAdded:Connect(function(character)
  10. if player.Name == 'Greatwillim08' then
  11. cgui.Parent = game.Workspace:WaitForChild(player.Name).Head
  12. while wait() do
  13. for i = 1, 255 do
  14. cgui.TextLabel.TextStrokeColor3 = Color3.fromHSV(i/255, 1, 1)
  15. cgui.TextLabel.TextColor3 = Color3.fromHSV(i/255, 1, 1)
  16. wait(.1)
  17. end
  18. end
  19. end
  20. end)
  21. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement