Loop not Changing the Position of my Part?
Asked by
5 years ago Edited 5 years ago
So I've been stumped for a while, I can't find anything about this issue online, and anything I've tried hasn't helped.
In my game I want a gem that can be picked up and will respawn in a new location a minute after it's been picked up. And if a minute has gone by and no-one has picked it up, then it will move.
Here's the code, I'm getting no errors.
(Server script inside the gem that's inside the workspace)
02 | local TweenService = game:GetService( "TweenService" ) |
04 | local RanNum = math.random(- 658.15 , 520.34 ) |
05 | local RanNum 2 = math.random(- 1348.535 , 135.925 ) |
07 | local Gem = script.Parent |
08 | Gem.Position = Vector 3. new(RanNum, - 27.199 , RanNum 2 ) |
11 | CFrame = Gem.CFrame * CFrame.fromAxisAngle(Vector 3. new( 0 , 1 , 0 ), math.rad(- 180 )) |
14 | local tweenInfo = TweenInfo.new( 2.0 , Enum.EasingStyle.Linear, Enum.EasingDirection.InOut, - 1 , false , 0 ) |
16 | local tween = TweenService:Create(Gem, tweenInfo, goal) |
21 | script.Parent.Touched:Connect( function (hit) |
22 | if Debounce = = false and Gem.Transparency = = 0 then |
25 | RanNum = math.random(- 658.15 , 520.34 ) |
26 | RanNum 2 = math.random(- 1348.535 , 135.925 ) |
28 | Gem.Position = Vector 3. new(RanNum, - 27.199 , RanNum 2 ) |
30 | local Reward = math.random( 5 , 25 ) |
32 | local Char = hit:FindFirstAncestorOfClass( "Model" ) |
34 | local player = game:GetService( "Players" ):WaitForChild(Char.Name) |
36 | local Gems = player:WaitForChild( "Gems" ) |
37 | local TotalGems = player:WaitForChild( "TotalGems" ) |
38 | local Rebirths = player:WaitForChild( "leaderstats" ):WaitForChild( "Rebirths" ) |
42 | Gems.Value = Gems.Value + Reward |
43 | TotalGems.Value = TotalGems.Value + Reward |
45 | game.ReplicatedStorage.Collect:FireClient(player) |
56 | if Debounce = = false then |
59 | RanNum = math.random(- 658.15 , 520.34 ) |
60 | RanNum 2 = math.random(- 1348.535 , 135.925 ) |
64 | Gem.Position = Vector 3. new(RanNum, - 27.199 , RanNum 2 ) |
The picking up and respawning a minute later works fine, it's the loop that's the problem. The prints in the loop all fire and I tested to make sure the numbers for new co-ords were actually being changed. And they were. I also tried turning off the tween and starting it again, but that didn't work. I'm really stumped because picking it up works fine and the loop has the same code to change the position that the function does. If you can help I would appreciate it.
Edit:
So, I found out the tween has to do with it, and apparently the function didn't actually change the position. I still don't know why, but I do know, if the tween never starts, it can change the position. But like I already said, I tried cancelling the tween and then changing the position but it didn't work. I tried this again, as well as pausing the tween, but it still doesn't work.