Advertisement
PlayStationUser99

How to make a halo system! | Part 1. Halo script (Change).

Mar 11th, 2021
346
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. -- Change "PurpleHalo" and "GreenHalo" with your halo names!
  2.  
  3. script.Parent.MouseButton1Click:Connect(function()
  4. local halo = game.ServerStorage.PurpleHalo:Clone()
  5. if not script.Parent.Parent.Parent.Parent.Parent.Character then
  6.  
  7. else
  8. if not script.Parent.Parent.Parent.Parent.Parent.Character:FindFirstChild("GreenHalo") then
  9. halo.Parent = script.Parent.Parent.Parent.Parent.Parent.Character
  10. else
  11. local removehalo = script.Parent.Parent.Parent.Parent.Parent.Character:FindFirstChild("GreenHalo")
  12. halo.Parent = script.Parent.Parent.Parent.Parent.Parent.Character
  13. removehalo:Destroy()
  14. end
  15. end
  16. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement