Answered by
4 years ago Edited 4 years ago
Okay, so if anybody gets this same problem I found the fix.
What i did to combat this problem was that I made a remote event which was fired when the player closed the shop.
Script
1 | game.ReplicatedStorage.CloseShop.OnServerEvent:Connect( function (player) |
3 | game.Workspace [ player.Name ] .HumanoidRootPart.CFrame = game.Workspace.SHOP.ExitShopPart.CFrame |
5 | game.ReplicatedStorage.SetSpeed:FireClient(player) |
Then, I had a local script listening for the remote event. When the event was fired, this script set the player's walkspeed to 16
Local script
1 | local replicatedStorage = game:GetService( "ReplicatedStorage" ) |
3 | replicatedStorage.SetSpeed.OnClientEvent:Connect( function () |
4 | game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 16 |
I still have no idea why my script didn't like to change the walkspeed to 16 but this is the fix!