Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- DO NOT COPY PASTE THIS, ONLY COPY PASTE SECTIONS
- Section 1 (Godding)
- ____________________
- local player = game.Players.LocalPlayer
- if player.Character then
- if player.Character:FindFirstChild("Humanoid") then
- player.Character.Humanoid.Name = "1"
- end
- local l = player.Character["1"]:Clone()
- l.Parent = player.Character
- l.Name = "Humanoid"; wait(0.1)
- player.Character["1"]:Destroy()
- workspace.CurrentCamera.CameraSubject = player.Character.Humanoid
- player.Character.Animate.Disabled = true; wait(0.1)
- player.Character.Animate.Disabled = false
- end
- print("finished.")
- __________________________
- Section 2 (click teleport)
- _________________________
- plr = game.Players.LocalPlayer
- hum = plr.Character.HumanoidRootPart
- mouse = plr:GetMouse()
- mouse.KeyDown:connect(function(key)
- if key == "e" then
- if mouse.Target then
- hum.CFrame = CFrame.new(mouse.Hit.x, mouse.Hit.y + 5, mouse.Hit.z)
- end
- end
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement