Advertisement
M16III

Sphere

Apr 3rd, 2020
169
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.52 KB | None | 0 0
  1. local parent = Workspace
  2.  
  3. local UserName = game:GetService('Players').LocalPlayer.Name
  4. local Texture = 2675785344
  5.  
  6.  
  7. local CE = {}
  8. local Variables = {
  9. workspace = game:GetService("Workspace"),
  10. players = game:GetService("Players")
  11. }
  12.  
  13. local MainUserP, MainUserW = Variables.players.LocalPlayer, Variables.workspace:FindFirstChild(UserName)
  14.  
  15. function CE:FireEvent(ItemName, Object, Property, Value)
  16. MainUserW:FindFirstChild(ItemName)["ServerControl"]:InvokeServer("SetProperty",{["Value"]=Value,["Property"]=Property,["Object"]=Object})
  17. end
  18.  
  19. Variables.workspace.Buy:FireServer(0, "PompousTheCloud")
  20. MainUserP["Backpack"]:WaitForChild("PompousTheCloud").Parent = MainUserW
  21.  
  22. CE:FireEvent("PompousTheCloud",MainUserW["Torso"],"Anchored",true)
  23. CE:FireEvent("PompousTheCloud",MainUserW["Torso"],"Size",Vector3.new(1,1,1))
  24. CE:FireEvent("PompousTheCloud",MainUserW["Torso"],"BrickColor",BrickColor.new(0,0,0))
  25. CE:FireEvent("PompousTheCloud",MainUserW["Torso"],"CanCollide",true)
  26. wait(.3)
  27. CE:FireEvent("PompousTheCloud",MainUserW["Torso"],"Size",Vector3.new(15,15,15))
  28. CE:FireEvent("PompousTheCloud",MainUserW["Torso"],"BrickColor",BrickColor.new(0,0,0))
  29. CE:FireEvent("PompousTheCloud",MainUserW["Torso"],"CanCollide",false)
  30.  
  31. CE:FireEvent("PompousTheCloud",MainUserW["Torso"],"Material","metal")
  32. CE:FireEvent("PompousTheCloud",MainUserW["Torso"],"Shape","Sphere")
  33. CE:FireEvent("PompousTheCloud",MainUserW["Torso"],"Texture","rbxassetid://2675785344"..Texture)
  34.  
  35. CE:FireEvent("PompousTheCloud",MainUserW["Torso"],"Parent",parent)
  36. wait()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement