SHOW:
|
|
- or go back to the newest paste.
| 1 | -- Game | |
| 2 | local Workspace = game:GetService("Workspace")
| |
| 3 | local Players = game:GetService("Players")
| |
| 4 | local ReplicatedStorage = game:GetService("ReplicatedStorage")
| |
| 5 | ||
| 6 | -- LocalPlayer | |
| 7 | local lPlayer = Players.LocalPlayer | |
| 8 | local lCharacter = lPlayer.Character | |
| 9 | local lHumanoidRootPart = lCharacter.HumanoidRootPart | |
| 10 | local lHumanoid = lCharacter.Humanoid | |
| 11 | local lSpeed = lHumanoid.WalkSpeed | |
| 12 | local lJump = lHumanoid.JumpPower | |
| 13 | local lGui = lPlayer.PlayerGui | |
| 14 | local lCFrame = lHumanoidRootPart.CFrame | |
| 15 | ||
| 16 | --[[ RemoteEvents & RemoteFunctions | |
| 17 | ||
| 18 | local RE1 = ReplicatedStorage.Path:FireServer(Arguments) | |
| 19 | local RE2 = ReplicatedStorage.Path:FireServer(Arguments) | |
| 20 | local RE3 = ReplicatedStorage.Path:FireServer(Arguments) | |
| 21 | ||
| 22 | local RF1 = ReplicatedStorage.Path:InvokeServer(Arguments) | |
| 23 | local RF2 = ReplicatedStorage.Path:InvokeServer(Arguments) | |
| 24 | local RF3 = ReplicatedStorage.Path:InvokeServer(Arguments) | |
| 25 | ||
| 26 | ]] |