Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Having trouble getting an ice move to work in an actual roblox game rather then studio?

Asked by 8 years ago
Edited 8 years ago

It only spawns in the middle of the map, instead of going up then shooting out

01plar = game.Players.LocalPlayer
02char = plar.Character
03mouse = plar:GetMouse()
04charge = false
05function okd(key)
06    key = key:lower()
07if charge == true then
08    return
09    elseif key == "r" then
10    charge = true
11        local Ice = Instance.new("Part")
12        Ice.Shape = "Ball"
13        Ice.CanCollide = true
14        Ice.TopSurface = "Smooth"
15        Ice.BottomSurface = "Smooth"
View all 29 lines...
0
Is this a localscript? Is FE enabled? If FE is enabled, I believe you cannot do this with a localscript. FrostTaco 90 — 8y
0
Filtering is not enabled. BossVsLegend -4 — 8y

1 answer

Log in to vote
0
Answered by 8 years ago

I think its because you didn't set the position of the Ice move.

Ad

Answer this question