- What do you want to achieve?
When i press my button to increase the size and also to keep the postion to the legs
- What is the issue?
When i increase the size the char isn’t moving at all
Video link: robloxapp-20230513-1332190
- What solutions have you tried so far?
I tried Weld and WeldConstraint but neither helped. I dont know why it works in the first place and then not. Any solutions i found on the Forum dosent help me
Note: This a fragment of the script in the DataStore
Ringus.OnServerEvent:Connect(function(player)
local lcoin = player.leaderstats.Coins
local lrebirth = player.leaderstats.Rebirths
local char = player.Character
if lcoin.Value >= player.SizeY.Value * 5 and RDebounce == false then
RDebounce = true
local ring1 = char:FindFirstChild("Ring")
lcoin.Value -= player.SizeY.Value * 12
player.SizeY.Value += 1
player.SizeZ.Value += 1
ring1.Size = Vector3.new(0.15, player.SizeY.Value, player.SizeZ.Value)
ring1.CanCollide = false
ring1.Anchored = false
RDebounce = false
end
end)
Any feedback would be appreciated