I’d imagine this is a super easy fix and i’m just being stupid, but basically this code is in the starter player script and it not working.
local Players = game:GetService("Players")
local player = Players.LocalPlayer
local ff = Instance.new("ForceField")
ff.Parent = player
ff.Visible = false
I also have a script in the starter character script which isn’t working either.
local player = game.Players.LocalPlayer
local character = player.Character or player.CharacterAdded:Wait()
character.Humanoid.WalkSpeed = 100
Now, second script is working but only for client since you change walkspeed locally not from server which is what some hackers do for hacking your experience. You should change humanoid’s speed from server side not from local script.