HI, I want to make a game like “Every roblox player” but with game (its not original pls dont judge me) but the issue is when I want to move a model or the player over the number limit it just move the model or player at the limit:
-
What do you want to achieve? Keep it simple and clear!
Just move a model over the number limit -
What is the issue? Include screenshots / videos if possible!
Cant change position over the max limit -
What solutions have you tried so far? Did you look for solutions on the Developer Hub?
I search on Developer Hub but didn’t find
The lines for move the player
game:GetService("ReplicatedStorage").Event.GetPosByID.OnServerEvent:Connect(function(plr, id)
local position = PositionPart(GetCoordinatesFromID(id))
plr.Character.HumanoidRootPart.Position = Vector3.new(position.X - 10, position.Y, position.Z)
plr.Character.HumanoidRootPart.CFrame *= CFrame.Angles(0, math.rad(-90), 0)
if not books[id] then
local part = bookToClone:Clone()
part:SetPrimaryPartCFrame(position)
part.Parent = workspace.Games
part.ID.Value = id
books[id] = part
end
print(GetCoordinatesFromID(id))
end)