|
| 06 Oct 2015 04:56 PM |
Problem : 17:48:16.549 - Workspace.Player.Katana.MAIN:212: attempt to index upvalue 'T1' (a number value) local T1 = 0 T1 = 10 for i = 1,10 do wait(1) T1 = T1 - 1 player.PlayerGui.Gui.Smash.Text = T1.Tostring() + " Second Cooldown" end S1.Value = true end |
|
|
| Report Abuse |
|
|
| 06 Oct 2015 04:57 PM |
You have to use .. to connect strings
player.PlayerGui.Gui.Smash.Text = tostring(T1) .. " Second Cooldown"
Instance.new("BodyVelocity",SenseiWarrior).velocity = CFrame.new(SenseiWarrior.Torso.Position,YourGirlsDMs.Position).lookVector * 10 |
|
|
| Report Abuse |
|