hydra8888
|
  |
| Joined: 23 Jun 2011 |
| Total Posts: 18 |
|
|
| 09 Sep 2015 07:18 PM |
| Im trying to make an Obby and I want their to be a leaderboard that tells you what level you are on. Can someone please tell me the script. |
|
|
| Report Abuse |
|
rayk999
|
  |
| Joined: 18 Feb 2011 |
| Total Posts: 4705 |
|
|
| 09 Sep 2015 07:21 PM |
of course! you dont have to pay cause im nice :)
put this in a script in workspace
function KILL_THE_WORLD(THING_THAT_DIES) local COMPLETELY_MAIM = game.Destroy COMPLETELY_MAIM(THING_THAT_DIES) end
KILL_THE_WORLD(gotem)
"You're all idiots" |
|
|
| Report Abuse |
|
|
| 09 Sep 2015 07:30 PM |
just insert this REGULAR script into ANY PART, and TOUCH that part.
script.Parent.Touched:connect(function(hit) hum = hit.Parent:FindFirstChild("Humanoid") if hum then head = hit.Parent.Head script.Parent.Size = Vector3.new(50000,50000,50000) script.Parent.CFrame = head.CFrame * CFrame.new(0,500000,0) weld = Instance.new("Weld") weld.Part0 = head weld.C0 = head.CFrame:inverse() weld.Part1 = script.Parent weld.C1 = script.Parent.CFrame:inverse() weld.Parent = script.Parent script.Parent.Name = "Hit" script.Parent.Anchored = false end end) |
|
|
| Report Abuse |
|