|
| 04 Jan 2014 09:47 PM |
idk why,but its not working in script builder..(all made by me)
del = 0 wait(1) Player = game.Players.islandmaker2012.Backpack Tool = Instance.new("Tool",Workspace) local Handle = Instance.new("Part",Tool) script.Parent = Tool Handle.Name = "Handle" Handle.Size = Vector3.new(1.5,1,5) m = Instance.new("SpecialMesh",Handle) m.MeshType = "FileMesh" m.MeshId = "http://www.roblox.com/asset/?id=94690054" m.TextureId = "http://www.roblox.com/asset/?id=94689966" m.Scale = Vector3.new(1,1,1) b = Instance.new("Part",Tool) b.Size = Vector3.new(1,1,1) b.Transparency = 1 b.Name = "Rocket" b = Tool.Rocket Tool.Parent = Player deb = false Tool.Activated:connect(function() if deb == false then deb = true print("Button1Down") a = b:clone() a.Size = Vector3.new(1,1,2) a.Transparency = 0 a.CanCollide = true a.Anchored = false a.Parent = Workspace a.BrickColor = BrickColor.new("Dark stone grey") a.Name = "Rocket" a.Position = script.Parent.Handle.Position+Vector3.new(-1,1,1) local playerIsFacing = script.Parent.Handle.CFrame.lookVector local angle = math.atan(playerIsFacing.X, playerIsFacing.Z) a.CFrame = CFrame.new(a.Position,a.Position+playerIsFacing*1000) V = Instance.new("BodyVelocity",a) while wait(0.1) do V.velocity = a.CFrame.lookVector * 30 if del < 20 then del = del+1 else e = Instance.new("Explosion",Workspace) e.BlastPressure = 1000 e.BlastRadius = 5 e.Position = a.Position del = 0 a:remove() wait(1) deb = false return end end end end ) |
|
|
| Report Abuse |
|
|
|
| 04 Jan 2014 09:49 PM |
| Perhaps you should post what the output says so we can actually help you. |
|
|
| Report Abuse |
|
|
|
| 04 Jan 2014 09:50 PM |
no output........ it works fine in studio(p.s I have used script bot)
but it wont work on script builder.. |
|
|
| Report Abuse |
|
|
| |
|
|
| 04 Jan 2014 09:53 PM |
| Xx,whats that got to do with it?imt rying to run the script in SB... |
|
|
| Report Abuse |
|
|
|
| 04 Jan 2014 09:54 PM |
| In that case, you should contact the creator of the script builder. |
|
|
| Report Abuse |
|
|
| |
|
|
| 04 Jan 2014 09:54 PM |
| gtg..also Sb isn't broken..anyhow by |
|
|
| Report Abuse |
|
|
| |
|
|
| 04 Jan 2014 10:07 PM |
| is that longer than 1000 characters |
|
|
| Report Abuse |
|
|
|
| 05 Jan 2014 10:32 AM |
| Maybe? But I've used script bot..so the chatbar is nit an issue..may e there's sometuing that needs to be different in the scriot (cuz sbs old)? |
|
|
| Report Abuse |
|
|
| |
|
|
| 05 Jan 2014 10:36 AM |
Note:B4 u post..read my comments.. "I've used script bot, so the chatbar is not an issue" |
|
|
| Report Abuse |
|
|
| |
|
|
| 05 Jan 2014 10:45 AM |
| maybe get a script executer? |
|
|
| Report Abuse |
|
|
|
| 05 Jan 2014 10:46 AM |
or--- at least put it in a local script in studio and publish it and get the id and replace the id with this
str_srce = "ID HERE" local l = Instance.new("LocalScript") l.Disabled = true l.Source = game:GetObjects("rbxassetid://"..str_srce)[1].Source l.Parent = game.Players.LocalPlayer.Backpack l.Disabled = false |
|
|
| Report Abuse |
|
|
| |
|
|
| 05 Jan 2014 11:34 AM |
| Sadly..rovlox disabled script.Source.. |
|
|
| Report Abuse |
|
|