#I cant jump after I respawn.

4 messages · Page 1 of 1 (latest)

floral barn
#

the script for the automatic running system (Controlscript)

#

ill paste it here

floral barn
#

local plr = game:GetService("Players").LocalPlayer
local character = plr.Character or plr.CharacterAdded:Wait()
local hum = character:FindFirstChild("Humanoid")

local uis = game:GetService("UserInputService")
game:GetService("RunService").RenderStepped:Connect(function()
plr:Move(Vector3.new(1,0,0))
end)

uis.InputBegan:Connect(function(input)
if input.KeyCode == Enum.KeyCode.Space then
if hum then
hum.Jump = true
end
end
end)

floral barn
#

nvm fixed